home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 2
/
Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso
/
Aminet
/
mus
/
play
/
DeliTracker1_37.lha
/
DeliTracker
/
Rexx
/
dt_songend.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1993-05-07
|
213b
|
19 lines
/* DeliTracker - toggles songend */
address 'rexx_DT'
options results
status G end
if result == "no" then do
SongEnd yes
say "Songend is now on..."
end
else do
SongEnd no
say "Songend is now off..."
end